home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / srchlp.zip / SRCHELP.MAK < prev    next >
Makefile  |  1993-09-18  |  468b  |  14 lines

  1. !include <ntwin32.mak>
  2.  
  3. all: srchelp.dll
  4.  
  5. srchelp.obj: srchelp.c
  6.    cl386 -c -Od -Gs3 -Zpei -D_X86_ -DWIN32 -D_DLL srchelp.c
  7.  
  8. srchelp.lib: srchelp.obj srchelp.def
  9.     lib32 -machine:i386 -def:srchelp.def srchelp.obj -out:srchelp.lib
  10.  
  11. srchelp.dll: srchelp.obj srchelp.lib srchelp.def
  12.    link32 -heap:4096,4096 -stack:5120,5120 -debug:none -subsystem:windows -base:0x1C000000 -dll -entry:DLLEntryPoint@12 -out:srchelp.dll srchelp.exp srchelp.obj $(LIB)\*.lib
  13.  
  14.